home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / WIN_PRO / VIEWS.ZIP;1 / CVDZIP.EXE / CVHOW.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-10-15  |  824 b   |  50 lines

  1. /*
  2.     cvhow.h
  3.  
  4.     "How-does-it-work" window
  5.     
  6.     C++/Views 2.0 Demo
  7.     Copyright (c) 1992, by Liant Software Corp.
  8.     ALL RIGHTS RESERVED.
  9.  
  10.     Revision History:
  11.     -----------------
  12. */
  13.  
  14. #ifndef cvhow_h
  15. #define cvhow_h
  16. #include "dialog.h"
  17. #include "str.h"
  18.  
  19. class VEditBox;
  20. class VButton;
  21. class VPushButton;
  22. class VFont;
  23.  
  24. class HowView : public VDialog {
  25. private:
  26.     VString        overviewName;
  27.     VString        sourceName;
  28.     VEditBox   *msgBox;
  29.     VFont       *sourceFont;
  30.     VFont       *overviewFont;
  31.  
  32.     VPushButton *overbttn;
  33.     VPushButton *srcbttn;
  34.  
  35.     boolean        overviewBtn(VButton *b);
  36.     boolean        sourceBtn(VButton *b);
  37.     boolean        aboutBtn(VButton *b);
  38.  
  39. public:
  40.     HowView(VWindow *, char *tpc, char *src);
  41.     HowView();
  42.     ~HowView();
  43.  
  44.     VClass *iam();
  45.     boolean free();
  46. };
  47.  
  48. extern VClass *HowViewCls;
  49. #endif /* cvhow_h */
  50.